home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / prog / atari / c / zmdm / decl.h < prev    next >
C/C++ Source or Header  |  1993-06-26  |  1KB  |  65 lines

  1.      /***********************************************\
  2.      *                        *
  3.      *  Decl.h - extern declarations for C libarary  *
  4.      *      must come after <stdio.h> is included    *
  5.     *                        *
  6.     *    Preprocessor symbol `MWC' should be        *
  7.     *    defined when using Mark Williams C        *
  8.      *                        *
  9.     \***********************************************/
  10.  
  11. #ifndef DECL_H
  12.  
  13. extern    FILE *fopen(), *freopen(), *fdopen();
  14. #ifndef MWC
  15. extern    FILE *fopena(), *freopa();
  16. extern    FILE *fopenb(), *freopb();
  17. #endif
  18.  
  19. extern    char    *etoa();
  20. extern    char    *ftoa();
  21. extern    char    *getpass();
  22. extern    char    *index();
  23. extern    char    *mktemp();
  24. extern    char    *rindex();
  25. extern    char    *sprintf();
  26. extern    char    *strcat();
  27. extern    char    *strcpy();
  28. extern    char    *strncat();
  29. extern    char    *strncpy();
  30. extern    char    *calloc(), *malloc(), *realloc(), *sbrk();
  31. extern    char     *gets(), *fgets();
  32. extern    char     *ttyname();
  33. #ifdef MWC
  34. extern  char    *lmalloc(), *lcalloc(), *lrealloc();
  35. #endif
  36.  
  37. extern    double    atan();
  38. extern    double    atof();
  39. extern    double    ceil();
  40. extern    double    cos();
  41. extern    double    exp();
  42. extern    double    fabs();
  43. extern    double    floor();
  44. extern    double    fmod();
  45. extern    double    log();
  46. extern    double    pow();
  47. extern    double    sin();
  48. extern    double    sinh();
  49. extern    double    sqrt();
  50. extern    double    tan();
  51. extern    double    tanh();
  52.  
  53. extern    int    strlen();
  54. extern    int    (*signal())();
  55.  
  56. extern    long     atol();
  57. extern    long     ftell();
  58. extern    long     lseek(), tell();
  59. extern    long    getl();
  60.  
  61. #define DECL_H
  62. #endif
  63.  
  64. /** EOF **/
  65.